home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.434 < prev    next >
Text File  |  1996-02-12  |  29KB  |  584 lines

  1. Frequently Asked Questions (FAQS);faqs.434
  2.  
  3.  
  4.  
  5.     Caveat lector: chat2 is documented only by example, may not run on
  6.     System V systems, and is subtly machine dependent both in its ideas
  7.     of networking and in pseudottys.
  8.  
  9.  
  10. 2.34) What does "Malformed command links" mean?
  11.  
  12.     This is a bug in 4.035.  While in general it's merely a cosmetic
  13.     problem, it often comanifests with a highly undesirable coredumping
  14.     problem.  Programs known to be affected by the fatal coredump include
  15.     plum and pcops.  Since perl5 is pretty much a total rewrite, we can
  16.     count on it being fixed then, but if anyone tracks down the coredump
  17.     problem before then, a significant portion of the Perl world would
  18.     rejoice.
  19.  
  20.  
  21. 2.35) How can I set up a footer format to be used with write()?
  22.  
  23.     While the $^ variable contains the name of the current header format,
  24.     there is no corresponding mechanism to automatically do the same thing
  25.     for a footer.  Not knowing how big a format is going to be until you
  26.     evaluate it is one of the major problems.
  27.  
  28.     If you have a fixed-size footer, you can get footers by checking for
  29.     line left on page ($-) before each write, and printing the footer
  30.     yourself if necessary.
  31.  
  32.     Another strategy is to open a pipe to yourself, using open(KID, "|-")
  33.     and always write()ing to the KID, who then postprocesses its STDIN to
  34.     rearrange headers and footers however you like.  Not very convenient,
  35.     but doable.
  36.  
  37.  
  38. 2.36) Why does my Perl program keep growing in size?
  39.  
  40.     While there may be a real memory leak in the Perl source code or even
  41.     whichever malloc() you're using, common causes are incomplete eval()s
  42.     or local()s in loops.
  43.  
  44.     An eval() which terminates in error due to a failed parsing
  45.     will leave a bit of memory unusable.
  46.  
  47.     A local() inside a loop:
  48.  
  49.     for (1..100) {
  50.         local(@array);
  51.     }
  52.  
  53.     will build up 100 versions of @array before the loop is done.
  54.     The work-around is:
  55.  
  56.     local(@array);
  57.     for (1..100) {
  58.         undef @array;
  59.     }
  60.  
  61.     Larry reports that this behavior is fixed for perl5.
  62.  
  63. --
  64.     Tom Christiansen      tchrist@convex.com      convex!tchrist
  65.  
  66.     Miksch's Law:
  67.             If a string has one end, then it has another end.
  68. --
  69.     Tom Christiansen      tchrist@convex.com      convex!tchrist
  70.  
  71.  
  72. It's all magic.  :-)    --Larry Wall in <7282@jpl-devvax.JPL.NASA.GOV>
  73. Xref: bloom-picayune.mit.edu alt.binaries.pictures.d:6167 alt.binaries.pictures.utilities:1493 alt.binaries.pictures.fractals:689 alt.binaries.pictures.fine-art.d:52 news.answers:4584
  74. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!biosci!uwm.edu!cs.utexas.edu!sun-barr!olivea!uunet!Cadence.COM!deej
  75. From: deej@cadence.com (Jim Howard)
  76. Newsgroups: alt.binaries.pictures.d,alt.binaries.pictures,alt.binaries.pictures.utilities,alt.binaries.pictures.fractals,alt.binaries.pictures.fine-art.d,news.answers
  77. Subject: alt.binaries.pictures FAQ - General Etiquette
  78. Message-ID: <1992Dec14.013005@U2.Cadence.COM>
  79. Date: 14 Dec 92 09:21:41 GMT
  80. Expires: Mon, 11 Jan 1993 00:00:00 GMT
  81. Sender: usenet@Cadence.COM (Usenet News)
  82. Followup-To: alt.binaries.pictures.d
  83. Organization: Cadence Design Systems, Inc.
  84. Lines: 506
  85. Approved: news-answers-request@MIT.Edu
  86. Supersedes: <1992Nov30.013002@U2.Cadence.COM>
  87. Nntp-Posting-Host: cds8613.cadence.com
  88.  
  89. Archive-name: pictures-faq/part1
  90. Last-modified: 13 November 1992
  91.  
  92.     This is part 1 of the FAQ for the alt.binaries.pictures* hierarchy.
  93.     This part of the alt.binaries.pictures FAQ contains "general etiquette
  94.     suggestions", those handy little rules that'll help you avoid getting
  95.     flamed by dozens of other a.b.p* readers.  It is *HIGHLY* recommended
  96.     that you read and understand this section fully before posting to any of
  97.     the a.b.p* groups.
  98.  
  99.       For information on "general", or operating-system independent
  100.     information, questions you may have about the pictures newsgroups,
  101.     decoding and encoding techniques, or picture formats, consult part 2
  102.     of this posting.
  103.  
  104.       For information on your particular system and on specific utilities,
  105.     consult part 3 of this posting.
  106.  
  107.     Before posting to these groups for the first time, please check the FAQ
  108.     list (this posting - including parts 2 and 3), and also read the newsgroup
  109.     news.announce.newusers, which contains many answers to questions about
  110.     UseNet in general.
  111.  
  112.     If you've read previous versions of this FAQ, you'll probably only want
  113.     to read anything that has changed since the last distribution.  These
  114.     changes appear both in this document and in the accompanying "Changes to
  115.     the alt.binaries.pictures FAQ".  Note that this is a "live" document, and
  116.     is always getting important information added or updated.
  117.  
  118. --------------------------------------------------------------------------------
  119.  
  120. TABLE OF CONTENTS
  121.    I.     NEWSGROUP USAGE
  122.   II.     POSTING VOLUME
  123.  III.     WHAT/WHEN TO POST
  124.   IV.     POSTING CONTENT
  125.    V.     Subject: LINE STANDARDS
  126.   VI.     ANONYMOUS FTP
  127.  VII.     "REPOST" REQUESTS
  128. VIII.    TEST POSTS
  129.   IX.    DEALING WITH THOSE WHO DON'T/WON'T FOLLOW ETIQUETTE
  130.  
  131.  
  132. I. NEWSGROUP USAGE
  133.  
  134. Alt.binaries.pictures.erotica is for erotic pictures ONLY.
  135.     Erotic (adj): Of or arousing sexual feelings or desires;  having to do
  136.     with sexual love;  amatory.
  137.     ONLY the erotica newsgroups should be used for pictures of human nudity
  138.     or any form of pornography.
  139.  
  140. Alt.binaries.pictures.erotica.d is for the Discussion of pix in ABPE, etc.
  141.  
  142. Alt.binaries.pictures.tasteless is for "tasteless", "bizarre", or
  143.   "grotesque" pictures ONLY.
  144.  
  145. Alt.binaries.pictures.fractals is for fractal pictures ONLY.
  146.  
  147. Alt.binaries.pictures.misc is for the remaining types of pictures ONLY.
  148.  
  149. Alt.binaries.pictures.d is for the Discussion of pix in ABPT, ABPF, ABPM, etc.
  150.  
  151. Alt.binaries.pictures.fine-art.graphics is for the posting of ORIGINAL
  152.   artwork created using computer programs ONLY.  Moderated.
  153.  
  154. Alt.binaries.pictures.fine-art.digitized is for the posting of scanned
  155.   ORIGINAL artwork ONLY.  Moderated.
  156.  
  157. Alt.binaries.pictures.fine-art.d is for the Discussion of pix in ABPF-AG or
  158.   ABPF-AD ONLY.  Moderated.
  159.  
  160. Alt.binaries.pictures.utilities is for the posting of source or binary
  161.   executables of pictures-related software.
  162.  
  163. Comp.sources.misc is a good place for image-viewing source code.
  164.  
  165. Comp.graphics is a good place for discussion of image formats.
  166.  
  167. Alt.graphics.pixutils is for discussion of image format translation.
  168.  
  169. Throughout the remainder of this document, any newsgroup in the
  170. alt.binaries.pictures.* hierarchy WITHOUT the '.d' extension (including, but
  171. not limited to alt.binaries.pictures.erotica, alt.binaries.pictures.tasteless,
  172. and alt.binaries.pictures.misc) will be referred to as "the pictures
  173. newsgroups", and those WITH the '.d' extension (including, but not limited to
  174. alt.binaries.pictures.d and alt.binaries.pictures.erotica.d) will be referred
  175. to as "the discussion newsgroups".  These two types of newsgroups work
  176. basically the same way as the comp.binaries.ibm.pc and c.b.i.p.d groups;  one
  177. is for posting new material, and one is for discussing posts and other issues.
  178.  
  179. BY FAR THE MOST IMPORTANT ASPECT OF ABP* ETIQUETTE IS:
  180. The pictures newsgroups are for pictures ONLY (if it's not a picture,
  181. don't post it in any of these newsgroups)!!!!  It has been pointed out
  182. that some sites carry the pictures newsgroups without also carrying the
  183. discussion newsgroups.  This is very unfortunate, as there is often
  184. valuable information contained in the discussion newsgroups that anyone
  185. who frequents the pictures newsgroups would find of interest.  If your
  186. site doesn't carry the discussion newsgroups, complain to your news
  187. administrator!
  188.  
  189. The basic idea is this:  if it is a picture, post it to the appropriate
  190. pictures newsgroup.  If it is *ANYTHING ELSE* ANYTHING ANYTHING ANYTHING
  191. ELSE (INCLUDING UTILITIES!!), post it to the associated discussion newsgroup
  192. or to an appropriate utilities newsgroup (like a.b.p.utilities, for example)!
  193. The truth is that I feel bad about posting *THIS FILE* to the pictures
  194. newsgroups, because it is not a picture.  However, the benefits of restricting
  195. the requests for info far outweigh the detriment of breaking this rule.
  196.  
  197. PLEASE DO NOT POST ANYTHING TO THE PICTURES NEWSGROUPS THAT IS NOT A
  198. PICTURE OF SOME SORT!!!!
  199.  
  200.  
  201. II. POSTING VOLUME
  202.  
  203. The first thing is this: please restrict yourself to a maximum of 400
  204. KB of images per day.  If you've got a bunch of extremely small (50K
  205. to 100 KB) pictures, then you can post several of them at once.  If
  206. you've got a few medium-sized pictures (150 to 200 KB), then you should
  207. only post one or two of them per day.  If you've got a few rather large
  208. to huge (400K or more) pictures, you should only post one of them per
  209. day.  It's best to post the full image the same day, as some sites
  210. expire things daily (sometimes in an even shorter period), so your
  211. complete image would never be available there.
  212.  
  213. As you're no doubt thinking, this is inconvenient.  Wouldn't it be nice
  214. just to be able to post everything at once?  Well, the problem is, if
  215. you do this, you're essentially cutting your own throat (and others'
  216. as well.)
  217.  
  218. The problem is that it takes a lot of time and effort (albeit automated,
  219. but still), money, and disk space to transmit your pictures all over the
  220. world.  Unlike a lot of students at universities (for example), many
  221. people at many sites have to pay directly out of their own pockets to
  222. transmit news articles, in the form of phone bills for their modems.
  223. Also, a lot of sites don't have infinitely large disks, and a
  224. particularly heavy day of posting can actually fill up entire partitions.
  225.  
  226. You still might be thinking, "Well, that's their problem." - and you're
  227. right.  However, it becomes YOUR problem because a lot of sites still
  228. propagate news articles in serial chains:
  229.  
  230.     A <---> B <---> C <---> D <---> E
  231.  
  232. Now, say you're site A.  You decide to post a few MB of pictures in one
  233. day.  Site B connects to your site, A, and grabs the articles.  Site C
  234. connects to site B and attempts to grab the articles.  But site C is
  235. rather limited.  Its disks fill up a few times, perhaps the system
  236. crashes.  The sysadmin knows he will get an outrageous phone bill caused
  237. by just ATTEMPTING to transmit all of your pictures.
  238.  
  239. So the sysadmin of site C "drops" the group (or groups) in which you posted
  240. all of your pictures.  So the people at sites D and E will now NEVER SEE
  241. ANY OF THE PICTURES YOU POST.  Conversely, because the chain is
  242. bidirectional, if the people at sites D or E post some pictures, YOU
  243. WILL NEVER SEE THEM.  Congratulations, you've just slit not only your
  244. own throat, but the throats of EVERYONE at sites A, B, C, D, and E as
  245. well.
  246.  
  247. This is why everyone must post only limited amounts per day.  As it is,
  248. pictures newsgroups account for something like 50% of the entire net
  249. traffic, and 75% of the alt.* traffic.  We need to be self-policing, or
  250. the pictures newsgroups will die out because of the phenomenon mentioned
  251. above.
  252.  
  253.  
  254. III. WHAT/WHEN TO POST
  255.  
  256. A common question that is asked is this one:  what should I post to the
  257. net?  The basic answer is: anything you'd like to see here yourself!
  258.  
  259. If you got the file from some FTP site that was announced over the net,
  260. don't bother posting it.  5-to-1 odds say that everyone and his dog
  261. already have it, and we *really* need to be careful about wasting
  262. bandwidth!  If you're unsure of whether there's any interest in it,
  263. just post a short message saying: "I have this file.  Mail me if you
  264. want a copy."  If 500 people say they want one, post it... if only one
  265. bozo from outer mongolia wants it, it's a sure bet that the picture has
  266. already made the rounds!  You might consider *e-mailing* it to the bozo
  267. from outer mongolia instead!
  268.  
  269. The same goes if you see a request!  If that same bozo posts a request
  270. for T2.gif and you've got it and are thinking about posting it, *MAIL*
  271. it to him/her instead!  This will eliminate the problem of the same
  272. picture getting posted to the net on a weekly basis (and pissing a lot
  273. of people off in the process)!!!
  274.  
  275.  
  276. IV. POSTING CONTENT
  277.  
  278. In the actual message you're posting (commonly in either part 0 or part
  279. 1), be sure to give at least a brief description of what's in it, like:
  280.  
  281.    CRSH+BRN.GIF   800x600x256 (in 8 parts)
  282.  
  283.    This is 15th in the series of this plane crash at the Beirut Air Show
  284.    taken at every single conceivable angle.  This one was taken from a
  285.    photograph by a guy who happened to be standing directly under the
  286.    plane as it came down.  Pulitzer Prize material.  At least the camera
  287.    was saved.
  288.  
  289. Also, checksums are nice, for people with access to sum programs.  It
  290. helps people identify erroneous transmissions.  Usually people include
  291. things like
  292.  
  293.    Checksums: (obtained with 4.2 BSD 'sum' or SysV 'sum -r')
  294.    between 'CUT HERE lines':
  295.       part 1: 76663 9082
  296.       part 2: 78973 1234
  297.    etc...
  298.  
  299. If you have a GIF file, don't bother trying to run some compression
  300. routine on it... it *won't* work.  LZW compression (the kind used in
  301. GIF files) is a very efficient compression scheme, and happens to be
  302. the one used in many common compression routines (including the standard
  303. UNIX `compress' utility!).  If you try to compress a GIF file, it will
  304. usually just end up getting bigger, and cause undue hardship to those
  305. trying to download and decode the picture as well.
  306.  
  307. The most common standard for binary file transmission is the UUENCODE
  308. standard.  Apple's BinHex is also frequently used.  Be aware, however,
  309. that the further you stray from a standard, the fewer the people that
  310. will be able to decode your posting, and the more it begins to become
  311. high-volume garbage.
  312.  
  313. It is necessary to split large files because of a few reasons.  First of
  314. all, not all news software can handle huge files.  Secondly, and more
  315. important, if some sort of error in transmission occurs (yes, it *does*
  316. happen from time to time) you only need to re-broadcast one small part,
  317. rather than the whole multi-megabyte image.
  318.  
  319. If you do post a multi-part file, be sure to add lines before and
  320. after the data that say 'CUT HERE' so that people trimming the headers
  321. and trailers by hand know where to cut.  A recent addition to the
  322. etiquette also has you make the lines say 'BEGIN-----Cut Here' and
  323. 'END-----Cut Here' at the obvious locations, so that simple AWK and
  324. PERL scripts can handle multi-part files.  Another nice thing to do is
  325. to put the part (02/06) numbers in each file.  There are several
  326. "super" uuencode programs that will do most of this for you (see part
  327. 3 for more details).  It is important to make the "Cut Here" parts in
  328. mixed-case or lower-case letters;  some decoders detect data based on
  329. the presence of characters which belong in the normal uuencoding
  330. character set, and they will choke on lines which are all upper-case,
  331. as these are valid uuencode characters.  If you mix the cases, these
  332. decoders will do fine...  Remember (if you add "BEGIN" and "END"
  333. keywords) to make "BEGIN" and "END" all caps so existing scripts won't
  334. miss them, and so uudecoders won't choke on them.
  335.  
  336.  
  337. V. Subject: LINE STANDARDS
  338.  
  339. Above all else, be sure to give subject lines that are informative.
  340. The subject line should contain (at an absolute minimum):
  341.     The file name
  342.     Which part this is, and how many total parts
  343.  
  344. As an expanded suggestion for a standard, consider the following:
  345.  
  346. - filename.type (part/total) {label} ^REPOST^ [sh] "extraTitle"
  347. ^ ^        ^     ^    ^       ^       ^        ^    ^
  348. | |        |     |    |       |       |        |    |
  349. 1 2        3     4    5       6       7        8    9
  350.  
  351. 1) The '-' character sets this off as a picture posting (not a follow-up,
  352.    not a request, not a flame for a follow-up or a request, etc.).
  353.    OPTIONAL (but highly suggested).
  354. 2) The name of the file.  You might consider limiting this to a maximum
  355.    of as few as 8 characters, since this is the limit of some archaic
  356.    operating systems.  Other nearly equally archaic OS's limit you to 14
  357.    characters.  Do what you will, but realize others' limitations...
  358.    REQUIRED.
  359. 3) The type of picture (GIF, JPEG, PostScript).  The suggested standard
  360.    is to stick to all lower case, three characters maximum (gif, jpg, ps).
  361.    REQUIRED.
  362. 4, 5) Which part of how many this is.  Enclosed in parentheses.
  363.    REQUIRED.
  364. 6) The type of picture ("male", "female", "both", "plane", "scenic", etc.).
  365.    Enclosed in curly brackets.
  366.    OPTIONAL (but very considerate).
  367. 7) Notifies everyone that this is a repost of a posting that went sour.
  368.    Enclosed in up-arrows (what's their real character name?).
  369.    OPTIONAL (but very considerate).
  370. 8) Flag that notifies people that this posting uses script wrappers (in case
  371.    they have to handle these special).  Enclosed in square brackets.
  372.    OPTIONAL (but very considerate).
  373. 9) Additional descriptive text to give a better idea of what's in the picture.
  374.    Enclosed in double quotes.
  375.    OPTIONAL (but very considerate).
  376.  
  377. This suggested standard is intended to be strictly ordered (i.e. if there's
  378. a ^REPOST^ notification, it appears after any label info and before any
  379. script wrapper notification).
  380.  
  381. For example:
  382.  
  383.    - CRSH+BRN.GIF (02/08) {plane} "Plane crash at an air show, 800x600x256"
  384. Notice that it includes everything: the file name, what part of how
  385. many this one is, a short description, and the resolution.  If you
  386. insist on leaving everything *else* out, at least say the name of
  387. the file and which part of how many it is!
  388. In the "erotica" newsgroups, it's also popular (and often demanded!)
  389. to include the picture subject's gender (i.e. "{male}", "{female}",
  390. "{both}", etc.).  The gender should be considered as part of the
  391. minimal set of information in the "erotica" newsgroups, as the addition
  392. of this information to the subject line makes it possible for people to
  393. avoid spending time downloading stuff they don't care about.
  394.  
  395. Certain newsreaders (NN, for example) sort the articles alphabetically
  396. by title, so subject lines with part numbers get displayed and saved
  397. in order.  There is an obvious (and common) way to torpedo this
  398. process: make subject lines which do not follow sequentially.
  399.  
  400. An example:
  401.         first article's subject: "plane crash GIF: CRSH+BRN (part 1 / 4)"
  402.   subsequent articles' subjects: "CRSH+BRN (part N / 4)"
  403. These subject lines will not be displayed and sorted correctly by NN.
  404.  
  405. However, if you change the arrangement a little, like this:
  406.         first article's subject: "CRSH+BRN (part 1/4) plane crash GIF"
  407.   subsequent articles' subjects: "CRSH+BRN (part N/4)"
  408. you will please NN-users the world over.
  409.  
  410.  
  411. VI. ANONYMOUS FTP
  412.  
  413. A word about anonymous FTP and GIF files.  When you log onto a remote
  414. machine via anonymous FTP, please try to restrict yourself to no more
  415. then ten minutes of transmission time, or about five to ten files.  As
  416. you can imagine, when people discover a new archive of GIF files,
  417. they are all hot to download every one they can, and often they jam up
  418. the site for *days*.  You'll notice this effect the first time some
  419. bozo announces the name of a new GIF archive.  You won't be able to
  420. get through without persistent efforts over several hours or even a
  421. day or two.  Then the system administrators of that site notice that
  422. they have had about $5,000 worth of anonymous FTP over the last two
  423. days, and revoke the anonymous FTP privilege.  Now every one is
  424. screwed.
  425.  
  426. Be considerate; grab only a few files and then let someone else have a
  427. chance.  This probably won't solve the problem in the long term (still
  428. everyone and his dog will be ftp'ing into that machine), but at least
  429. it will spread the wealth a bit.
  430.  
  431. As for anonymous FTP sites for erotica pictures, THEY DO NOT EXIST.  Even
  432. if you find an anonymous FTP site that *appears* to have erotica pictures,
  433. it is merely an illusion.  As the sage once said, "Revel in your illusions,
  434. don't share them."  The effects of sharing your illusion in this case
  435. *ALWAYS* results in your illusion being rendered non-existent (in one way
  436. or another).  For this very same reason, it is considered very poor form
  437. to ask someone else to share their illusions with you.  If you were
  438. considering asking for a list of anonymous FTP sites with erotica pictures
  439. -- don't.
  440.  
  441.  
  442. VII. "REPOST" REQUESTS
  443.  
  444. Your absolutely last course of action should be to ask for a repost of
  445. an article.  There are so very many other ways that the download and
  446. decode process could have failed, you should be very sure that none of
  447. these steps went south BEFORE asking for a repost.  After you have
  448. exhausted all of the possibilities from your end, post to the discussion
  449. newsgroup and request someone to send you their (working) copy.  If
  450. enough people post requests of this sort, eventually the original
  451. poster will usually re-post it.  If you're the only person with a
  452. problem, someone is bound to send you the file, and you'll save the
  453. net 'hundreds if not thousands of dollars.'
  454. Also, just because you've already read an article doesn't mean it has
  455. vanished off the face of the earth.  It is a fairly simple matter to get
  456. back to articles you've already read (unless your site administrator
  457. has removed them or they've expired).  There are essentially four methods
  458. to accomplish this (examples assume you're using rn):
  459.     1.  Assuming you know the article number(s) of the postings, just
  460.         enter the article number from within that newsgroup.  Voila!
  461.     2.  Since you probably DON'T know the article number, once you are
  462.         in the appropriate newsgroup, you can step backwards or forwards
  463.         through the articles by using "P" (previous) and "N" (next).
  464.     3.  So you don't know the article number, and you don't want to step
  465.         backwards through 50+ articles - what now?  As long as you
  466.         remember something from the subject line of the article, you can
  467.         use regular expressions to search backwards, using the command
  468.         "?pattern?r", where pattern is the part you remember.  For
  469.         example, you read an article with the word "howdy" in the subject,
  470.         then decide later you want to get back to that article.  Just get
  471.         into the right newsgroup, then enter "?howdy?r" and rn will search
  472.         back through all the articles you've read to find the last one
  473.         with "howdy" somewhere in the title.  Not the right one?  Enter
  474.         "?", and rn will retrieve the next-to-last article with "howdy"
  475.         in the title.
  476.     4.  You can modify your .newsrc file so that articles are no longer
  477.         marked as being read (this file usually resides in your home
  478.         directory).  This is especially valuable if you forgot the name
  479.         of a particular posting, but you know it was in the last ?x?
  480.         number articles.  For example, if your .newsrc file reads:
  481.         alt.binaries.pictures.misc: 1-2380
  482.         ...and you know that the article you're looking for was in the
  483.         last 30 or so postings, you could edit this line to read:
  484.         alt.binaries.pictures.misc: 1-2350
  485.         ...so that your news reader would think that you hadn't yet seen
  486.         these articles (of course you'll have to re-sort through many
  487.         other articles you've already seen, but hopefully you'll at least
  488.         be able to find the "lost" article!).  IMPORTANT NOTE!!:  If you
  489.         edit your .newsrc file, make *absolutely sure* that you aren't
  490.         currently running a news reader session - this may munge the
  491.         .newsrc file, or cause other undefined or undesirable side-effects.
  492.  
  493. By using these techniques, you won't have to ask for someone to e-mail you a
  494. copy or to re-post the article, since you already have it and know how to
  495. get back to it!
  496.  
  497.  
  498. VIII. TEST POSTS
  499.  
  500. If you're trying out a new method of posting, or if you are posting a
  501. picture for the first time, or if it's been a while since you posted a
  502. picture and you're not really sure you remember all the details on how to
  503. do it right, by all means, PLEASE DO A TEST POSTING FIRST!  Test postings
  504. should *NEVER* be made in any of the pictures newsgroups or the pictures
  505. discussion newsgroups - there are plenty of test newsgroups made for just
  506. this purpose (local.test is your best choice, misc.test is also nice).
  507. Wherever you do your test posting, make sure to add the line
  508. Distribution: local
  509. in the heading so your post doesn't go outside your site.  Make sure that
  510. you can download, re-construct, and view the picture you've posted.  Then,
  511. when you're satisfied that all is well, post it into the appropriate
  512. pictures newsgroup!
  513.  
  514.  
  515. IX. DEALING WITH THOSE WHO DON'T/WON'T FOLLOW ETIQUETTE
  516.  
  517. How should you react if you notice someone violating any of these items
  518. of netiquette?  It depends on what they've done, of course.  In the case
  519. of some posting that you find offensive, the best course of action is
  520. just to ignore it.  95% of the time, these people are just trying to pull
  521. someone's chain - and they are usually pretty successful (I can't tell
  522. you how many megabytes of responses I've seen to just one sentence of
  523. crap).  Another 3% of the time, someone has left themselves logged in and
  524. is having a "joke" played on them by a "friend".  The other 2% of the time,
  525. they actually believe what they are saying.  In this case, do you really
  526. think that they care that you find what they say offensive?  Especially in
  527. the last case, silence does more to thwart their behavior than anything
  528. else.  Refusing to even acknowledge someone usually damages them more than
  529. you could possibly hope to do by responding to them in any way.  Don't even
  530. waste the time, effort, and money (after all, someone *is* paying for what
  531. you say, somewhere) to follow up.
  532.  
  533. In the case of posting a discussion to a pictures newsgroup, probably the
  534. *worst* thing you can possibly do is follow-up to the offending posting
  535. and yourself violate the same rule!  After all, what good are you doing
  536. by complaining about someone violating a rule you ignore yourself?  If you
  537. really *must* follow-up to this type of posting, make sure and edit the
  538. Newsgroups: line so that your post is re-directed to the discussion
  539. newsgroup.  Another technique you might try is just ignoring the post -
  540. if enough people did this, it's entirely likely that there would soon be
  541. no discussion at all in the pictures newsgroups, except for the occasional
  542. newbie or someone not wise enough to read this FAQ - and they'd learn
  543. eventually.  I suggest the following course of action, in order of
  544. preference:
  545.     1) Respond via e-mail.  Gently suggest that they take discussion to
  546.        the discussion newsgroup.  Answer the question/request if you can.
  547.        Suggest that they read this FAQ to get more information and to
  548.        better understand pictures newsgroup etiquette.
  549.     2) Follow-up only if you can answer the question/request, re-directing
  550.        your posting to the appropriate discussion newsgroup (edit the
  551.        Newsgroups: line).  Suggest that they read this FAQ to get more
  552.        information and to better understand pictures newsgroup etiquette.
  553.     3) Ignore the posting.  They'll most likely get the hint eventually.
  554.     4) Follow-up only if you can answer the question/request, re-directing
  555.        the follow-ups of your posting to the appropriate discussion
  556.        newsgroup (edit the Followup-to: line -- your posting will go to
  557.        the pictures newsgroup, but anyone following up to your posting
  558.        will go to the discussion newsgroup).  Gently suggest that this
  559.        type of posting belongs in the discussion newsgroup, and that
  560.        that's where follow-ups have been re-directed.  Maybe even throw
  561.        in a small uuencoded picture at the end of your posting, just to
  562.        make it "legal".  Suggest that they read this FAQ to get more
  563.        information and to better understand pictures newsgroup etiquette.
  564. The more people that respond in a positive way, the fewer the flame wars,
  565. and the more pictures vs. discussion will end up in the pictures
  566. newsgroups!  That *is* what we're here for, after all!
  567.  
  568. -------------------------------------------------------------------------------
  569. HISTORY OF THIS FAQ:
  570. This file originally began life as the FAQ for alt.sex.pictures, and
  571. was first created and maintained by Dave Read (readdm@ccwf.cc.utexas.edu).
  572. Minor changes and a few additions to clean it up a bit and make it a little
  573. more relevant to the alt.binaries.pictures group were made by Steven M.
  574. Quinn (steveq@umbc5.umbc.edu).  A hierarchy of pictures groups (all under
  575. alt.binaries.pictures) was put into place in the fall of 1991, and since
  576. that time, Jim Howard (deej@cadence.com) has come forward to take over
  577. the maintenance of the "new" FAQ.
  578. --------------------------------------------------------------------------------
  579. Acknowledgements (part 1):
  580.   * Thanx to both James Ralston Crawford (qralston@cislabs.pitt.edu) and
  581.     Silver (gaynor@blaze.rutgers.edu) for input and suggestions on posting
  582.     volume.
  583. --------------------------------------------------------------------------------
  584.